Excel for WPF | ComponentOne
C1.WPF.Excel Namespace / XLNamedRangeCollection Class / Add Method / Add(String,XLCellRange[]) Method
The name of the named range to create.
The array of XLCellRange to include in the named range.

In This Topic
    Add(String,XLCellRange[]) Method
    In This Topic
    Creates an XLNamedRange object and appends it to the collection.
    Syntax
    'Declaration
     
    
    Public Overloads Function Add( _
       ByVal name As String, _
       ByVal cellRanges() As XLCellRange _
    ) As XLNamedRange

    Parameters

    name
    The name of the named range to create.
    cellRanges
    The array of XLCellRange to include in the named range.

    Return Value

    A reference to the object if it was successfully added to the collection, or null if the object could not be added (usually because it overlaps another cell range already in the collection).
    See Also